Skip to content

Conversation

JoannaCode
Copy link
Collaborator

public class SubstringwithConcatenationofAllWords {
public static List<Integer> findSubstring(String s, String[] words) {
List<Integer> res = new ArrayList<Integer>();
if( s==null || words == null || s.length() == 0 || words.length == 0 ) return res;
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

format

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants